From: Ian Jackson Date: Fri, 13 Feb 2015 16:04:34 +0000 (+0000) Subject: tools/configure: detect $host_vendor of rumprun, not just rumpxen X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~3767 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=d26cf9004b2e1678e4ff8dab11f4deca0293a0db;p=xen.git tools/configure: detect $host_vendor of rumprun, not just rumpxen This has been renamed by the rumpkernels upstream. (This patch needs to be backported.) Signed-off-by: Ian Jackson CC: Antti Kantee CC: Martin Lucina CC: Ian Campbell --- diff --git a/tools/configure b/tools/configure index e7dac757a0..1c92e83133 100755 --- a/tools/configure +++ b/tools/configure @@ -2402,8 +2402,8 @@ case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac case $host_vendor in -rumpxen) CONFIG_RUMP=y; rump=true ;; -*) CONFIG_RUMP=n; rump=false ;; +rumpxen|rumprun) CONFIG_RUMP=y; rump=true ;; +*) CONFIG_RUMP=n; rump=false ;; esac diff --git a/tools/configure.ac b/tools/configure.ac index 03dadd77aa..183561781b 100644 --- a/tools/configure.ac +++ b/tools/configure.ac @@ -35,8 +35,8 @@ APPEND_INCLUDES and APPEND_LIB instead when possible.]) AC_CANONICAL_HOST case $host_vendor in -rumpxen) CONFIG_RUMP=y; rump=true ;; -*) CONFIG_RUMP=n; rump=false ;; +rumpxen|rumprun) CONFIG_RUMP=y; rump=true ;; +*) CONFIG_RUMP=n; rump=false ;; esac AC_SUBST(CONFIG_RUMP)